Skip to main content

Get Device Trackers

GET /api/v1/device-trackers

Description

Retrieve device trackers information.

Path Parameters

NameTypeDescription
NoneNo parameters

Example

GET /api/v1/device-trackers

Response Code: 200 - OK

Description

Successful response with device trackers information.

Example

{
"status": true,
"statusCode": 200,
"data": {
"deviceTrackers": [
{
"deviceId": "string",
"deviceName": "string",
"deviceType": "string",
"location": {
"latitude": 0,
"longitude": 0
},
"status": "string"
}
]
}
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/device-trackers \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!